<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* { margin: 0; padding: 0; }
/* body { background-color: #333333; } */
img { border: 0; vertical-align: top; }
ul, li { list-style: none; }

.shutter {
  overflow: hidden;
  width: 1000px;
  height: 358px;
  position: relative;
  margin: 0px auto;
  border-radius: 10px;
  
}
.shutter-img {
  z-index: 1;
}
.shutter-img,
.shutter-img a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
.shutter-img a {
  cursor: default;
}
.shutter-img a &gt; img {
  min-width: 100%;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translate(-50%);
}
.shutter-img .created {
  overflow: hidden;
  position: absolute;
  z-index: 20;
}
.shutter-btn {}
.shutter-btn li {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 49px;
  height: 49px;
  margin-top: -25px;
  cursor: pointer;
}
.shutter-btn li.prev {
  left: 20px;
  background: url(../images/shutter_prevBtn.png) no-repeat 0 -49px;
}
.shutter-btn li.next {
  right: 20px;
  background: url(../images/shutter_nextBtn.png) no-repeat 0 -49px;
}
.shutter-desc {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 36px;
  background: url(../images/shutter_shadow.png) repeat;
}
.shutter-desc p {
  padding-left: 20px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
}
.shutter-bottom {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 99;
  transform: translate(-50%);
}
.shutter-bottom span {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 4px;
  padding: 6px;
  background: #3a3a3a;
}
    .shutter-bottom span:after {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -8px;
        margin-top: -8px;
        background: #3189ed;
        border-radius: 50%;
        padding: 8px;
        opacity: 0;
    }
.shutter-bottom span.nowdot:after {
  opacity: 1;
}</pre></body></html>